home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / programming / other / sounddt41src / snddtprefs / makefile < prev   
Makefile  |  1999-04-19  |  318b  |  20 lines

  1.  
  2. #
  3. # Makefile for SoundDT41 prefs ed !
  4. #
  5.  
  6. CC        = gcc
  7. CFLAGS        = -m68020-60 -O2 -fstrength-reduce -fomit-frame-pointer -msmall-code -c
  8. LDFLAGS        = -s -nostartfiles -noixemul
  9. OBJS        = main.o 
  10.  
  11. SoundDT41:    $(OBJS)
  12.         $(CC) $(LDFLAGS) -o $@ $(OBJS)
  13.         -ShortRel $@
  14.  
  15. main.o:        main.c
  16.         $(CC) $(CFLAGS) $<
  17.  
  18. clean:
  19.         -Delete $(OBJS)
  20.